home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 22 / CU Amiga Magazine's Super CD-ROM 22 (1998)(EMAP Images)(GB)[!][issue 1998-05].iso / PowerPC / System / PPCReleaseDEV / Examples / loop.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-21  |  233 b   |  16 lines

  1. #include <exec/types.h>
  2. #include <exec/nodes.h>
  3. #include <exec/lists.h>
  4. #include <exec/memory.h>
  5. #include <powerup/ppclib/interface.h>
  6. #include <powerup/gcclib/powerup_protos.h>
  7.  
  8. void main(void)
  9. {
  10. int    i;
  11.   for(;;)
  12.   {
  13.     i++;
  14.   }
  15. }
  16.